home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / bin / makeg < prev    next >
Text File  |  2006-04-12  |  417b  |  14 lines

  1. #! /bin/sh
  2. # makeg - run "make" with options necessary to make a debuggable executable
  3. # $Xorg: makeg.sh,v 1.3 2000/08/17 19:41:52 cpqbld Exp $
  4.  
  5. # set GDB=1 in your environment if using gdb on Solaris 2.
  6.  
  7. make="${MAKE-make}"
  8. flags="CDEBUGFLAGS=-g CXXDEBUGFLAGS=-g"
  9.  
  10. # gdb on Solaris needs the stabs included in the executable
  11. test "${GDB+yes}" = yes && flags="$flags -xs"
  12.  
  13. exec "$make" $flags LDSTRIPFLAGS= ${1+"$@"}
  14.